home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cocktail / begman.lha / begmanual / makefile < prev    next >
Makefile  |  1992-02-14  |  1KB  |  46 lines

  1. Figures=    begman01.ps begman03.ps begman05.ps begman06.ps \
  2.         begman066.ps begman07.ps begman08.ps begman10.ps \
  3.         begman12.ps begman15.ps 
  4. Distrib=    $(Figures) \
  5.         makefile \
  6.         begmanual.tex \
  7.         IRCons01.md.tin IRCons02.md.tin Manex01.mi.tin \
  8.         Manex02.mi.tin Test01.tin Test02.tin Test03.tin \
  9.         Test04.tin TestE01.tin TestE02.tin manex01.cgd.tin \
  10.         manex02.cgd.tin manex03.cgd.tin manex04.cgd.tin
  11.  
  12. .SUFFIXES :
  13. .SUFFIXES : .ps .vec
  14.     
  15. print:    begmanual.dvi $(Figures)
  16.     dvitps begmanual.dvi | lpr -Plw
  17.  
  18. .vec.ps:        
  19.     convps $*.vec
  20.  
  21. begmanual.dvi: begmanual.tex $(Figures)
  22.     latex begmanual    
  23.     latex begmanual    
  24.     latex begmanual    
  25.  
  26. begmanual.dist:     $(Distrib)
  27.     shar $(Distrib) > begmanual10.shar
  28.     compress begmanual10.shar
  29.     echo This is a shar'ed, compressed, uuencoded version > begmanual.dist
  30.     echo of the BEG user manual. >> begmanual.dist
  31.     echo Please use uudecode and uncompress to get >> begmanual.dist
  32.     echo the shar file. Unpack the shar file by piping >> begmanual.dist
  33.     echo it thru a shell. Afterwards call make. >> begmanual.dist
  34.     echo You might want to change the print command >> begmanual.dist
  35.     echo in the make file. >> begmanual.dist
  36.     echo  >> begmanual.dist
  37.     echo Please delete the lines until here before using uudecode. >> begmanual.dist
  38.     uuencode begmanual10.shar.Z begmanual10.shar.Z >> begmanual.dist 
  39.  
  40. clean:  
  41.     rm *.dvi
  42.     rm *.ps
  43.     rm *.log
  44.     rm *.aux
  45.     rm begmanual10.shar.Z
  46.